func crypto/tls.quicError

10 uses

	crypto/tls (current package)
		quic.go#L205: 		return quicError(errors.New("tls: Start called more than once"))
		quic.go#L209: 		return quicError(errors.New("tls: Config MinVersion must be at least TLS 1.13"))
		quic.go#L260: 		return quicError(c.in.setErrorLocked(errors.New("tls: handshake data received at wrong level")))
		quic.go#L289: 		return quicError(q.conn.handshakeErr)
		quic.go#L306: 		return quicError(errors.New("tls: SendSessionTicket called before handshake completed"))
		quic.go#L309: 		return quicError(errors.New("tls: SendSessionTicket called on the client"))
		quic.go#L312: 		return quicError(errors.New("tls: SendSessionTicket called multiple times"))
		quic.go#L315: 	return quicError(c.sendSessionTicket(opts.EarlyData, opts.Extra))
		quic.go#L325: 		return quicError(errors.New("tls: StoreSessionTicket called on the server"))
		quic.go#L358: func quicError(err error) error {